TG.WXCRM.V4/Model/DTO/GetProductForEmpowerDto.cs

21 lines
522 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WX.CRM.Model.DTO
{
public class GetProductForEmpowerDto
{
public int subproductid { get; set; }
public string subproductname { get; set; }
public string productcode { get; set; }
public decimal? price { get; set; }
public int? isEmpower { get; set; }
public int? producttype { get; set; }
public int? mid { get; set; }
}
}