package com.gear.swx.domain;
|
|
import com.gear.common.annotation.Excel;
|
import com.gear.common.annotation.Where;
|
import com.gear.common.enums.Condition;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.gear.common.core.domain.BusiBaseEntity;
|
|
/**
|
* 市场产品管理对象 swx_market
|
*
|
* @author czx
|
* @date 2023-11-20
|
*/
|
@Data
|
@TableName("swx_market")
|
public class SwxMarket extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** 产品名称 */
|
@Excel(name = "产品名称")
|
@Where(value = Condition.like,column = "name")
|
private String name;
|
|
/** 图片 */
|
@Excel(name = "图片")
|
private String logo;
|
|
/** 类型 */
|
@Excel(name = "类型")
|
@Where(value = Condition.eq,column = "type")
|
private Integer type;
|
|
/** 产品代码 */
|
@Excel(name = "产品代码")
|
@Where(value = Condition.like,column = "code")
|
private String code;
|
|
/** 状态 */
|
@Excel(name = "状态")
|
private Integer status;
|
|
/** 当前价格 */
|
@Excel(name = "当前价格")
|
private String nowPrice;
|
|
/** 价格图 */
|
@Excel(name = "价格图")
|
private String priceInfo;
|
|
/** 排序 */
|
@Excel(name = "排序")
|
private Integer sortNum;
|
|
/** 是否首页展示 */
|
@Excel(name = "是否首页展示")
|
private Integer showIndex;
|
|
/** 是否可以合约交易 */
|
@Excel(name = "是否可以合约交易")
|
private Integer canContracts;
|
|
/** 是否可以期权交易 */
|
@Excel(name = "是否可以期权交易")
|
private Integer canOptions;
|
|
/** 是否可以智能交易 */
|
@Excel(name = "是否可以智能交易")
|
private Integer canSmart;
|
|
private String appName;
|
|
private String kCode;
|
|
private String marketAllId;
|
}
|