|
|
@@ -303,8 +303,20 @@ namespace Model
|
|
|
/// 字段名
|
|
|
/// </summary>
|
|
|
public string fieldName { get; set; }
|
|
|
- public string fieldNameUpper { get; set; }
|
|
|
- public string fieldNameFirstUpper { get; set; }
|
|
|
+ public string fieldNameUpper
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return PublicFunction.transferName(fieldName);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ public string fieldNameFirstUpper
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return PublicFunction.transferName(fieldName, 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
/// <summary>
|