using System.Collections.Generic; namespace EntrustSettle.Model.Dtos { public class HydSubmitDto { public List 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; } /// /// 0:不是开票,1:是开票 /// public int invoiceApplyFlag { get; set; } public RegisterUser registerUser { get; set; } public class RegisterUser { public string phone { get; set; } public string userName { get; set; } public int sex { get; set; } public string idNumber { get; set; } public string enterpriseName { get; set; } public string dutyNo { get; set; } } } }