import EntityBase from "./EntityBase"; import MBusiness from "./MBusiness"; import MGoodBrand from "./MGoodBrand"; import MGoodCate from "./MGoodCate"; import MGoodSupplier from "./MGoodSupplier"; import MPicture from "./MPicture"; export default class MGood extends EntityBase { BindBusiness?: MBusiness; BindGoodBrand?: MGoodBrand; BindGoodCate?: MGoodCate; BindGoodGoodSupplier?: MGoodSupplier; Name?: string; GoodNO?: string; Warning?: number; Unit?: string; AvgPrice?: number; AllowSell?: boolean; IsSelfBuying?: boolean; IsEnabled?: boolean; PinYin?: string; InventoryAmount?: number; CreateTime?: Date; BindPicture?: MPicture; }