| | |
| | | |
| | | import java.io.Serializable; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import java.util.Date; |
| | |
| | | * @Version: V1.0 |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @TableName("tms_preparation_order_detail") |
| | | @ApiModel(value="tms_preparation_order_detail对象", description="刀具准备单明细") |
| | | public class PreparationOrderDetail implements Serializable { |
| | |
| | | private String preparationOrderId; |
| | | /**刀具编码*/ |
| | | @Excel(name = "刀具编码", width = 15) |
| | | @ApiModelProperty(value = "刀具编码") |
| | | @ApiModelProperty(value = "刀具编码(tms_base_tool表id字段)") |
| | | private String toolCode; |
| | | /**刀具编号*/ |
| | | @Excel(name = "刀具编号", width = 15) |
| | |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | @ApiModelProperty(value = "更新时间") |
| | | private Date updateTime; |
| | | |
| | | /**刀具编码(tms_base_tool表tool_code字段)*/ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "刀具编码(tms_base_tool表tool_code字段)") |
| | | private String toolNum; |
| | | /**中文名称*/ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "中文名称") |
| | | private String chineseName; |
| | | /**型号/图号*/ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "型号/图号") |
| | | private String toolModel; |
| | | /**工具类型*/ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "工具类型") |
| | | @Dict(dicCode = "application_type") |
| | | private String applicationType; |
| | | /**刀具材料*/ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "刀具材料") |
| | | private String toolMaterial; |
| | | /**零件材料*/ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "零件材料") |
| | | private String partMaterial; |
| | | /**厂家*/ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "厂家") |
| | | private String supplierId; |
| | | } |