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.

31 lines
972 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
/// <summary>
/// 0:不是开票1:是开票
/// </summary>
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; }
}
}
}