| 1234567891011121314151617181920212223242526272829303132 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HH.YiDaSyncNC.Dtos.NC
- {
- [SugarTable("ar_gatheritem")]
- public class ar_gatheritem
- {
- public ar_gatheritem()
- {
- }
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:False
- /// </summary>
- [SugarColumn(IsPrimaryKey = true)]
- public string pk_gatheritem { get; set; }
- public string pk_gatherbill { get; set; }
- public string src_itemid { get; set; }
- public string src_billid { get; set; }
- public string billdate { get; set; }
- public decimal money_cr { get; set; }
- }
- }
|