| | |
| | | [SugarColumn(ColumnName = "STATUS_DATE")] //用于SqlSugar |
| | | public DateTime? StatusDate { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FNAME")] |
| | | public string? FName { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "RESULT")] |
| | | public string? Result { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FSUBMIT")] |
| | | public string? FSubmit { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FSUBMIT_BY")] |
| | | public string? FSubmitBy { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FSUBMIT_DATE")] |
| | | public DateTime? FSubmitDate { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "MOID_NUM")] |
| | | public string? MoidNum { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? SearchValue { get; set; } |
| | | |