¶Ô±ÈÐÂÎļþ |
| | |
| | | using Microsoft.EntityFrameworkCore; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | |
| | | /* |
| | | * @author : åæå¥ |
| | | * @date : 2024/4/23ä¸å5:02:12 |
| | | * @desc : æ¹æ¬¡å±æ§è§å |
| | | */ |
| | | namespace Admin.NET.Core |
| | | { |
| | | /// <summary> |
| | | /// æ¹æ¬¡å±æ§è§å |
| | | /// </summary> |
| | | [Table("wms_batch_rule")] |
| | | [Comment("æ¹æ¬¡å±æ§è§å")] |
| | | public class WmsBatchRule : DEntityBase |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// è§åç¼å· |
| | | /// </summary> |
| | | [Comment("è§åç¼å·")] |
| | | [Required] |
| | | [MaxLength(255)] |
| | | public string RuleCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// è§ååç§° |
| | | /// </summary> |
| | | [Comment("è§ååç§°")] |
| | | [Required] |
| | | [MaxLength(255)] |
| | | public string RuleName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// è§åæè¿° |
| | | /// </summary> |
| | | [Comment("è§åæè¿°")] |
| | | [MaxLength(255)] |
| | | public string RuleDesc { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦ç¦ç¨ |
| | | /// </summary> |
| | | [Comment("æ¯å¦ç¦ç¨")] |
| | | [Required] |
| | | |
| | | public bool IsDisabled { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | using Microsoft.EntityFrameworkCore; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | |
| | | /* |
| | | * @author : åæå¥ |
| | | * @date : 2024/4/23ä¸å5:02:29 |
| | | * @desc : æ¹æ¬¡å±æ§è§åæç» |
| | | */ |
| | | namespace Admin.NET.Core |
| | | { |
| | | /// <summary> |
| | | /// æ¹æ¬¡å±æ§è§åæç» |
| | | /// </summary> |
| | | [Table("wms_batch_rule_detail")] |
| | | [Comment("æ¹æ¬¡å±æ§è§åæç»")] |
| | | public class WmsBatchRuleDetail : DEntityBase |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// è§åç¼å·Id |
| | | /// </summary> |
| | | [Comment("è§åç¼å·Id")] |
| | | |
| | | public long? BatchRuleId { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¹æ¬¡æ ç¾ |
| | | /// </summary> |
| | | [Comment("æ¹æ¬¡æ ç¾")] |
| | | [MaxLength(255)] |
| | | public string BatchTag { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// RFæ ç¾ |
| | | /// </summary> |
| | | [Comment("RFæ ç¾")] |
| | | [MaxLength(255)] |
| | | public string RFTag { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// RFæ¾ç¤º |
| | | /// </summary> |
| | | [Comment("RFæ¾ç¤º")] |
| | | [MaxLength(255)] |
| | | public string RFShow { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// è¾å
¥æ§å¶ |
| | | /// </summary> |
| | | [Comment("è¾å
¥æ§å¶")] |
| | | [MaxLength(255)] |
| | | public string InputControl { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 屿§æ ¼å¼ |
| | | /// </summary> |
| | | [Comment("屿§æ ¼å¼")] |
| | | [MaxLength(255)] |
| | | public string AttrForamt { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 屿§é项 |
| | | /// </summary> |
| | | [Comment("屿§é项")] |
| | | [MaxLength(255)] |
| | | public string AttrOption { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å
³é®å±æ§ |
| | | /// </summary> |
| | | [Comment("å
³é®å±æ§")] |
| | | [MaxLength(255)] |
| | | public string KeyAttr { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦ç¦ç¨ |
| | | /// </summary> |
| | | [Comment("æ¯å¦ç¦ç¨")] |
| | | [Required] |
| | | |
| | | public bool IsDisabled { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | using Microsoft.EntityFrameworkCore; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | |
| | | /* |
| | | * @author : åæå¥ |
| | | * @date : 2024/4/23ä¸å5:01:21 |
| | | * @desc : æ§å¶å±æ§è§å |
| | | */ |
| | | namespace Admin.NET.Core |
| | | { |
| | | /// <summary> |
| | | /// æ§å¶å±æ§è§å |
| | | /// </summary> |
| | | [Table("wms_control_rule")] |
| | | [Comment("æ§å¶å±æ§è§å")] |
| | | public class WmsControlRule : DEntityBase |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// è§åç¼å· |
| | | /// </summary> |
| | | [Comment("è§åç¼å·")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string RuleCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// è§ååç§° |
| | | /// </summary> |
| | | [Comment("è§ååç§°")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string RuleName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// è§åæè¿° |
| | | /// </summary> |
| | | [Comment("è§åæè¿°")] |
| | | [MaxLength(255)] |
| | | public string RuleDesc { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦ç¦ç¨ |
| | | /// </summary> |
| | | [Comment("æ¯å¦ç¦ç¨")] |
| | | [Required] |
| | | |
| | | public bool IsDisabled { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | using Microsoft.EntityFrameworkCore; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | |
| | | /* |
| | | * @author : åæå¥ |
| | | * @date : 2024/4/23ä¸å5:01:43 |
| | | * @desc : æ§å¶å±æ§è§åæç» |
| | | */ |
| | | namespace Admin.NET.Core |
| | | { |
| | | /// <summary> |
| | | /// æ§å¶å±æ§è§åæç» |
| | | /// </summary> |
| | | [Table("wms_control_rule_detail")] |
| | | [Comment("æ§å¶å±æ§è§åæç»")] |
| | | public class WmsControlRuleDetail : DEntityBase |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ§å¶å±æ§è§åID |
| | | /// </summary> |
| | | [Comment("æ§å¶å±æ§è§åID")] |
| | | [Required] |
| | | |
| | | public long ControlRuleId { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æé«åºå |
| | | /// </summary> |
| | | [Comment("æé«åºå")] |
| | | |
| | | [Column("MaxImumqty", TypeName = "decimal(10,3)")] |
| | | public decimal? MaxImumqty { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æä½åºå |
| | | /// </summary> |
| | | [Comment("æä½åºå")] |
| | | |
| | | [Column("MinImumqty", TypeName = "decimal(10,3)")] |
| | | public decimal? MinImumqty { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å®å
¨åºå |
| | | /// </summary> |
| | | [Comment("å®å
¨åºå")] |
| | | |
| | | [Column("SafeImumqty", TypeName = "decimal(10,3)")] |
| | | public decimal? SafeImumqty { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æå°åºé¾ |
| | | /// </summary> |
| | | [Comment("æå°åºé¾")] |
| | | |
| | | [Column("MinStorageAge", TypeName = "decimal(10,3)")] |
| | | public decimal? MinStorageAge { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æå¤§åºé¾ |
| | | /// </summary> |
| | | [Comment("æå¤§åºé¾")] |
| | | |
| | | [Column("MaxStorageAge", TypeName = "decimal(10,3)")] |
| | | public decimal? MaxStorageAge { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦å
æ£ |
| | | /// </summary> |
| | | [Comment("æ¯å¦å
æ£")] |
| | | |
| | | public bool? IsNotChek { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// ä¿è´¨æå¤©æ° |
| | | /// </summary> |
| | | [Comment("ä¿è´¨æå¤©æ°")] |
| | | |
| | | [Column("ShelfLifeDays", TypeName = "decimal(10,3)")] |
| | | public decimal? ShelfLifeDays { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦ç¦ç¨ |
| | | /// </summary> |
| | | [Comment("æ¯å¦ç¦ç¨")] |
| | | [Required] |
| | | |
| | | public bool IsDisabled { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |
| | |
| | | "avatar": "", |
| | | "version": "4.1.3", |
| | | "createdTime": "2024-4-12 12:56:29", |
| | | "updatedTime": "2024-4-23 16:40:22", |
| | | "updatedTime": "2024-4-23 16:59:43", |
| | | "dbConns": [], |
| | | "profile": { |
| | | "default": { |
| | |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | |
| | | "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", |
| | | "id": "0F93B3F0-CAA4-40CE-A101-B212B0B766D0", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | | { |
| | | "defKey": "IsDisabled", |
| | | "defName": "æ¯å¦ç¦ç¨", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "6F7C1C5C-D159-41E6-BF9D-54DEEFA79AFF", |
| | | "id": "582CD0A4-3B98-4588-9383-B24C6CF6A18C" |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserName", |
| | |
| | | "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", |
| | | "id": "B5EE2A1D-434B-40D4-AE30-178D1DABC57F", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | | { |
| | | "defKey": "IsDisabled", |
| | | "defName": "æ¯å¦ç¦ç¨", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "6F7C1C5C-D159-41E6-BF9D-54DEEFA79AFF", |
| | | "id": "38F923A4-EE25-4E20-B66F-2BAF56E94144" |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserName", |
| | |
| | | } |
| | | }, |
| | | "defKey": "wms_control_rule", |
| | | "defName": "æ§å¶å±æ§è§æ ¼", |
| | | "defName": "æ§å¶å±æ§è§å", |
| | | "comment": "", |
| | | "properties": { |
| | | "partitioned by": "(date string)", |
| | |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | | { |
| | | "defKey": "Code", |
| | | "defKey": "RuleCode", |
| | | "defName": "è§åç¼å·", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "id": "EA50CBBB-1767-4101-9DAC-7C8E302241E9", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | | { |
| | | "defKey": "Name", |
| | | "defKey": "RuleName", |
| | | "defName": "è§ååç§°", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "id": "A145DF29-EA07-4308-B410-4DE14F29DC8B", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | | { |
| | | "defKey": "Desc", |
| | | "defName": "æè¿°", |
| | | "defKey": "RuleDesc", |
| | | "defName": "è§åæè¿°", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | |
| | | "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", |
| | | "id": "ED8FCC44-999B-4952-9B40-A20A86C78EE5", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | | { |
| | | "defKey": "IsDisabled", |
| | | "defName": "æ¯å¦ç¦ç¨", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "6F7C1C5C-D159-41E6-BF9D-54DEEFA79AFF", |
| | | "id": "7C32FC58-EB02-4D9F-9FA1-B1ADF198A791" |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserName", |
| | |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", |
| | | "domain": "FF4459C5-6B45-4DBF-8FC0-E06239BC05B4", |
| | | "id": "C8C6FF27-DB1B-4050-84C0-9BE21D9BFE57", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", |
| | | "domain": "FF4459C5-6B45-4DBF-8FC0-E06239BC05B4", |
| | | "id": "18EE1570-81EB-4E2B-BBF8-B7DE984C29A5", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", |
| | | "domain": "FF4459C5-6B45-4DBF-8FC0-E06239BC05B4", |
| | | "id": "AC209FAD-8EB4-43D6-9DC2-8A43A0DA270A", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", |
| | | "domain": "FF4459C5-6B45-4DBF-8FC0-E06239BC05B4", |
| | | "id": "1FBB5213-E284-4130-A1D4-CCB8873BCA83", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", |
| | | "domain": "FF4459C5-6B45-4DBF-8FC0-E06239BC05B4", |
| | | "id": "C0097556-CB43-49E6-AC7E-95DD1FFC6D90", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | | { |
| | | "defKey": "IsChek", |
| | | "defKey": "IsNotChek", |
| | | "defName": "æ¯å¦å
æ£", |
| | | "comment": "", |
| | | "type": "", |
| | |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", |
| | | "domain": "6F7C1C5C-D159-41E6-BF9D-54DEEFA79AFF", |
| | | "id": "16B0368C-7F27-41C9-BE0B-321870610A3A", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | | { |
| | | "defKey": "ShelfLifeDays", |
| | | "defName": "ä¿è´¨æå¤©æ°", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "FF4459C5-6B45-4DBF-8FC0-E06239BC05B4", |
| | | "id": "533D8075-6A4B-4A83-AB1F-E290DDE49EAF" |
| | | }, |
| | | { |
| | | "defKey": "IsDisabled", |
| | | "defName": "æ¯å¦ç¦ç¨", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "6F7C1C5C-D159-41E6-BF9D-54DEEFA79AFF", |
| | | "id": "9AF4D310-9EAC-40F9-8A80-60F15B20F00E" |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserName", |
| | | "defName": "å建人", |
| | | "comment": "", |