| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- using Business.Core.Attributes;
- using Bussiness.MongoModel;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Bussiness.MongoModel.MES.IC
- {
- /// <summary>
- /// 物料计量表
- /// </summary>
- [CollectionName("dopbase", "mo_ic_metering_unit")]
- [Comment("物料计量表")]
- public class mo_ic_metering_unit : MoBaseEntity
- {
- /// <summary>
- /// 物料id
- /// </summary>
- [Required]
- [Comment("物料id")]
- public long icitem_id { get; set; }
- /// <summary>
- /// 物料名称
- /// </summary>
- [StringLength(80)]
- [Comment("物料名称")]
- public string? icitem_name { get; set; }
- /// <summary>
- /// 计量单位组
- /// </summary>
- [StringLength(80)]
- [Comment("计量单位组")]
- public string? unit_group { get; set; }
- /// <summary>
- /// 基本计量单位
- /// </summary>
- [StringLength(80)]
- [Comment("基本计量单位")]
- public string? unit { get; set; }
- /// <summary>
- /// 采购计量单位
- /// </summary>
- [StringLength(80)]
- [Comment("采购计量单位")]
- public string? order_unit { get; set; }
- /// <summary>
- /// 销售计量单位
- /// </summary>
- [StringLength(80)]
- [Comment("销售计量单位")]
- public string? sale_unit { get; set; }
- /// <summary>
- /// 生产计量单位
- /// </summary>
- [StringLength(80)]
- [Comment("生产计量单位")]
- public string? product_unit { get; set; }
- /// <summary>
- /// 库存计量单位
- /// </summary>
- [StringLength(80)]
- [Comment("库存计量单位")]
- public string? store_unit { get; set; }
- /// <summary>
- /// 数量精度
- /// </summary>
- [Comment("数量精度")]
- public int qty_decimal { get; set; }
- }
- }
|