¶Ô±ÈÐÂÎļþ |
| | |
| | | using Microsoft.EntityFrameworkCore; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | |
| | | /* |
| | | * @author : åæå¥ |
| | | * @date : 2024/4/23ä¸å1:55:15 |
| | | * @desc : ç©æå®¢æ·å
³è表 |
| | | */ |
| | | namespace Admin.NET.Core |
| | | { |
| | | /// <summary> |
| | | /// ç©æå®¢æ·å
³è表 |
| | | /// </summary> |
| | | [Table("wms_material_customer")] |
| | | [Comment("ç©æå®¢æ·å
³è表")] |
| | | public class WmsMaterialCustomer : DEntityBase |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// ç©æID |
| | | /// </summary> |
| | | [Comment("ç©æID")] |
| | | [Required] |
| | | |
| | | public long MaterialId { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// ç©æç¼å· |
| | | /// </summary> |
| | | [Comment("ç©æç¼å·")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string MaterialNo { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// ç©æåç§° |
| | | /// </summary> |
| | | [Comment("ç©æåç§°")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string MaterialName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客æ·ID |
| | | /// </summary> |
| | | [Comment("客æ·ID")] |
| | | [Required] |
| | | |
| | | public long CustId { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客æ·ç¼å· |
| | | /// </summary> |
| | | [Comment("客æ·ç¼å·")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string CustCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客æ·åç§° |
| | | /// </summary> |
| | | [Comment("客æ·åç§°")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string CustName { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |