¶Ô±ÈÐÂÎļþ |
| | |
| | | using Microsoft.EntityFrameworkCore; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | |
| | | /* |
| | | * @author : åæå¥ |
| | | * @date : 2024/4/23ä¸å11:02:03 |
| | | * @desc : å·¥åä¿¡æ¯è¡¨ |
| | | */ |
| | | namespace Admin.NET.Core |
| | | { |
| | | /// <summary> |
| | | /// å·¥åä¿¡æ¯è¡¨ |
| | | /// </summary> |
| | | [Table("wms_factory")] |
| | | [Comment("å·¥åä¿¡æ¯è¡¨")] |
| | | public class WmsFactory : DEntityBase |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// ç¼å· |
| | | /// </summary> |
| | | [Comment("ç¼å·")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string FactoryCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// åç§° |
| | | /// </summary> |
| | | [Comment("åç§°")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string FactoryName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å°å |
| | | /// </summary> |
| | | [Comment("å°å")] |
| | | [MaxLength(255)] |
| | | public string FactoryAddress { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦ç¦ç¨ |
| | | /// </summary> |
| | | [Comment("æ¯å¦ç¦ç¨")] |
| | | [Required] |
| | | |
| | | public bool IsDisabled { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |