| 1234567891011121314151617181920212223242526272829 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HH.YiDaSyncNC.Dtos.NC
- {
- [SugarTable("bd_projectclass")]
- public class bd_projectclass
- {
- public bd_projectclass()
- {
- }
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:False
- /// </summary>
- [SugarColumn(IsPrimaryKey = true)]
- public string pk_projectclass { get; set; }
- public string type_code { get; set; }
- public string type_name { get; set; }
- }
- }
|