You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
902 B
C#
29 lines
902 B
C#
namespace EntrustSettle.Model.Dtos.Expend
|
|
{
|
|
public class ExpendDto
|
|
{
|
|
public string BsType { get; set; }
|
|
public Data Data { get; set; }
|
|
public string Md5 { get; set; }
|
|
public string Module { get; set; }
|
|
public string RunId { get; set; }
|
|
public string SendType { get; set; }
|
|
public string Timestamp { get; set; }
|
|
public string UserId { get; set; }
|
|
}
|
|
|
|
public class Data
|
|
{
|
|
public string Beizhu { get; set; }
|
|
public string Bsno { get; set; }
|
|
public string Comid { get; set; }
|
|
public string Comname { get; set; }
|
|
public string Lururen { get; set; }
|
|
public string Lururenid { get; set; }
|
|
public string Mblno { get; set; }
|
|
public string Sendcom { get; set; }
|
|
public string Senduser { get; set; }
|
|
public string Senduserid { get; set; }
|
|
}
|
|
}
|