You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class TA_DELIVER_DEST
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
|
public int UID { get; set; }
|
|
|
|
[Key]
|
|
[StringLength(50)]
|
|
[DisplayName("地点编号")]
|
|
public string DestCode { get; set; }
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("地点名称")]
|
|
public string DestName { get; set; }
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("办事处")]
|
|
public string OfficeName { get; set; }
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("联系人")]
|
|
public string ReceivePerson { get; set; }
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("联系方式")]
|
|
public string ReceivePersonTel { get; set; }
|
|
|
|
[StringLength(200)]
|
|
[DisplayName("地址")]
|
|
public string ReceiveAddress { get; set; }
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("发出库位")]
|
|
public string RoadOutLoc { get; set; }
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("退回库位")]
|
|
public string RoadReturnLoc { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string StockLoc { get; set; }
|
|
}
|
|
}
|
|
|