1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Resource
- {
-
-
-
- [SugarTable("Res_AskData")]
- public class Res_AskData:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string DeleName { get; set; } = "";
-
-
-
- [SugarColumn(IsNullable =true,ColumnDataType ="varchar(100)")]
- public string Country { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string Area { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string UnitName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string Field { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string TalkCase { get; set; }
- }
- }
|