using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.Entity { public class EntireCodeDelModel { //单据号 public string TransCode { set; get; } //单据类型 public string TransType { set; get; } //操作(0:删除;1:关闭) public string OperationCode { set; get; } //操作人 public string User { set; get; } //操作时间 public string MTime { set; get; } //站点 public string WorkPoint { set; get; } } }