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.
26 lines
792 B
C#
26 lines
792 B
C#
using System.Collections.Generic;
|
|
|
|
namespace EntrustSettle.Model.Dtos
|
|
{
|
|
public class HydSubmitDto
|
|
{
|
|
public List<string> billNoList { get; set; }
|
|
public string customerName { get; set; }
|
|
public string tel { get; set; }
|
|
public string fileName { get; set; }
|
|
public string fileUrl { get; set; }
|
|
public string remark { get; set; }
|
|
public int registerFlag { get; set; }
|
|
public RegisterUser registerUser { get; set; }
|
|
|
|
public class RegisterUser
|
|
{
|
|
public string phone { get; set; }
|
|
public string userName { get; set; }
|
|
public string sex { get; set; }
|
|
public string idNumber { get; set; }
|
|
public string enterpriseName { get; set; }
|
|
}
|
|
}
|
|
}
|