绿植管理
This commit is contained in:
@@ -19,7 +19,7 @@ export interface PropertyVO {
|
||||
/**
|
||||
* 产品分类
|
||||
*/
|
||||
plantType: number;
|
||||
plantType: number|string;
|
||||
|
||||
/**
|
||||
* 产品图片
|
||||
@@ -44,7 +44,7 @@ export interface PropertyVO {
|
||||
/**
|
||||
* 状态(0下架 1上架 )
|
||||
*/
|
||||
state: number;
|
||||
state: number|string;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
@@ -72,8 +72,7 @@ export interface PropertyForm extends BaseEntity {
|
||||
/**
|
||||
* 产品分类
|
||||
*/
|
||||
plantType?: number;
|
||||
|
||||
plantType?: number|string;
|
||||
/**
|
||||
* 产品图片
|
||||
*/
|
||||
@@ -97,7 +96,7 @@ export interface PropertyForm extends BaseEntity {
|
||||
/**
|
||||
* 状态(0下架 1上架 )
|
||||
*/
|
||||
state?: number;
|
||||
state?: number|string;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
@@ -120,7 +119,7 @@ export interface PropertyQuery extends PageQuery {
|
||||
/**
|
||||
* 产品分类
|
||||
*/
|
||||
plantType?: number;
|
||||
plantType?: number|string;
|
||||
|
||||
/**
|
||||
* 产品图片
|
||||
@@ -145,7 +144,7 @@ export interface PropertyQuery extends PageQuery {
|
||||
/**
|
||||
* 状态(0下架 1上架 )
|
||||
*/
|
||||
state?: number;
|
||||
state?: number|string;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
@@ -172,7 +171,7 @@ export interface plantsProduct extends BaseEntity {
|
||||
/**
|
||||
* 产品分类
|
||||
*/
|
||||
plantType?: number;
|
||||
plantType?: number|string;
|
||||
|
||||
/**
|
||||
* 产品图片
|
||||
@@ -182,7 +181,7 @@ export interface plantsProduct extends BaseEntity {
|
||||
/**
|
||||
* 规格
|
||||
*/
|
||||
specification?: string;
|
||||
specification?: number|string;
|
||||
|
||||
/**
|
||||
* 租金
|
||||
@@ -197,7 +196,7 @@ export interface plantsProduct extends BaseEntity {
|
||||
/**
|
||||
* 状态(0下架 1上架 )
|
||||
*/
|
||||
state?: number;
|
||||
state?: number|string;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
|
Reference in New Issue
Block a user