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.
20 lines
457 B
C#
20 lines
457 B
C#
namespace DS.WMS.Core.FeeModule.Dtos;
|
|
|
|
public class WmsRentViewModel
|
|
{
|
|
public string Id {get;set;}
|
|
public string CUSTOMERNAME {get;set;}
|
|
public string ClientId {get;set;}
|
|
|
|
public DateTime StartDate {get;set;}
|
|
|
|
public DateTime EndDate {get;set;}
|
|
|
|
public int? RentArea { get; set; } = 0;
|
|
|
|
public decimal? RentAmount { get; set; } = 0;
|
|
|
|
public int? Status {get;set;}= 0;
|
|
|
|
public string Note { get; set; }
|
|
} |