| 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("ct_bondapply")]
- public class ct_bondapply
- {
- public ct_bondapply()
- {
- }
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:False
- /// </summary>
- [SugarColumn(IsPrimaryKey = true)]
- public string pk_bondapply { get; set; }
- public string billno { get; set; }
- public string approvestatus { get; set; }
- }
- }
|