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.
98 lines
2.7 KiB
98 lines
2.7 KiB
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using ChangKeTec.Wms.Models.Enums;
|
|
//using ChangKeTec.Wms.Models.TjAntolin;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class TM_TJANTOLIN_ASK
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
|
public int UID { get; set; }
|
|
|
|
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(50)]
|
|
[DisplayName("훨蛟긍뵀")]
|
|
public string TaskId { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
[DisplayName("膠죕뵀")]
|
|
public string PartCode { get; set; }
|
|
|
|
[NotMapped]
|
|
[DisplayName("膠죕췄甘")]
|
|
public string PartDesc => WmsCache.GetPartDesc(PartCode);
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("윱都욋貫")]
|
|
public string FromLoc { get; set; }
|
|
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("묏데긍뵀")]
|
|
public string OrderId { get; set; } //묏데뵀
|
|
|
|
[DisplayName("묏데糠埼뵀")]
|
|
public int OrderSeq { get; set; } //묏데糠埼뵀
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("싻죕욋貫")]
|
|
public string AskLocCode { get; set; } //싻죕욋貫
|
|
|
|
|
|
[Column(TypeName = "money")]
|
|
[DisplayName("싻죕鑒좆")]
|
|
public decimal Qty { get; set; }
|
|
|
|
|
|
//[DisplayName("榴檄")]
|
|
//public EnumTjAntolinState State { get; set; } //榴檄(0:灌뗍,1:綠뗍)
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("구鬧")]
|
|
public string Remark { get; set; }
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("났謹")]
|
|
public string Vehicle { get; set; } // 났謹 APS瓊묩
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("토零잚謹")]
|
|
public string Configuration { get; set; } // 토零잚謹 APS瓊묩
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("친야謹뵀")]
|
|
public string LaminationModule { get; set; } // 친야謹뵀 APS瓊묩
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("�干겼튄뵨룹窟")]
|
|
public string BeltlineSkinStitch { get; set; } // �干겼튄뵨룹窟 APS瓊묩
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("櫓干겼튄뵨룹窟")]
|
|
public string MidfieldSkinStitch { get; set; } // 櫓干겼튄뵨룹窟 APS瓊묩
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("쳔렘蕨")]
|
|
public string Direction { get; set; } // 쳔렘蕨 APS瓊묩
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("토뚤쯤")]
|
|
public string PairCode { get; set; } // 토뚤쯤 APS瓊묩
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("栗都")]
|
|
public string Resource { get; set; } // 栗都 APS瓊묩
|
|
|
|
[StringLength(50)]
|
|
[DisplayName("Runner잚謹")]
|
|
public string HighLowRunner { get; set; } // Runner잚謹 APS瓊묩
|
|
|
|
|
|
}
|
|
}
|