You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
617 B

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; }
}
}