23 lines
648 B
C#
23 lines
648 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Canvass
|
|
{
|
|
public class ForCanvassDto
|
|
{
|
|
public short Status {get;set;}
|
|
public string UserId { get; set; } = string.Empty;
|
|
public int SupplierId { get; set; }
|
|
public long PRNo { get; set; }
|
|
public long ItemNo { get; set; }
|
|
public int CanvassNo { get; set; }
|
|
public long PRDetailsId { get; set; }
|
|
public string FullName { get; set; } = string.Empty;
|
|
public string? Remarks { get; set; }
|
|
}
|
|
}
|