| 123456789101112131415161718192021222324252627282930 |
- 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_supplier")]
- public class bd_supplier
- {
- public bd_supplier()
- {
- }
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:False
- /// </summary>
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
- public string pk_supplier { get; set; }
- public string pk_org { get; set; }
- public string code { get; set; }
- public string name { get; set; }
- }
- }
|