import EntityBase from "./EntityBase"; import MBusiness from "./MBusiness"; export default class MProduct extends EntityBase { BindBusiness?: MBusiness; ProductNO?: string; ProductName?: string; ProductType?: string; ProductFriendlyName?: string; OrderId?: number; TerminalJson?: string; BindEntityGUID?: string; SellItem?: any; CreateTime?: Date; RewardSets?: string; PaymentSets?: Array; ConditionSets?: Array; PublishTime?: Date; Rank?: number; PinYin?: string; }