| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | private String changeOrderNum; |
| | | /**变更单状态*/ |
| | | @ApiModelProperty(value = "变更单状态") |
| | | @Dict(dicCode = "technical_status_change_order_status") |
| | | private String changeStatus; |
| | | /**申请单位*/ |
| | | @ApiModelProperty(value = "申请单位") |
| | | @Dict(dictTable = "eam_base_factory", dicText = "factory_name", dicCode = "org_code") |
| | | private String factoryOrgCode; |
| | | /**编制人*/ |
| | | @ApiModelProperty(value = "编制人") |
| | | @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
| | | private String designer; |
| | | /**编制时间*/ |
| | | @ApiModelProperty(value = "编制时间") |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date designerTime; |
| | | /**使用单位室主管签字*/ |
| | | @ApiModelProperty(value = "使用单位室主管签字") |
| | | @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
| | | private String departHeaderSignature; |
| | | /**使用单位室主管签字时间*/ |
| | | @ApiModelProperty(value = "使用单位室主管签字时间") |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date departHeaderSignatureTime; |
| | | /**使用单位室主管签字结果*/ |
| | | @ApiModelProperty(value = "使用单位室主管签字结果") |
| | | @Dict(dicCode = "approve_reject") |
| | | private String departHeaderSignatureResult; |
| | | /**使用单位室主管意见*/ |
| | | @ApiModelProperty(value = "使用单位室主管意见") |
| | | private String departHeaderComment; |
| | | /**使用单位部主管签字*/ |
| | | @ApiModelProperty(value = "使用单位部主管签字") |
| | | @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
| | | private String departLeaderSignature; |
| | | /**使用单位部主管签字时间*/ |
| | | @ApiModelProperty(value = "使用单位部主管签字时间") |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date departLeaderSignatureTime; |
| | | /**使用单位部主管签字结果*/ |
| | | @ApiModelProperty(value = "使用单位部主管签字结果") |
| | | @Dict(dicCode = "approve_reject") |
| | | private String departLeaderSignatureResult; |
| | | /**使用单位部主管签字*/ |
| | | @ApiModelProperty(value = "使用单位部主管签字") |
| | | /**使用单位部主管意见*/ |
| | | @ApiModelProperty(value = "使用单位部主管意见") |
| | | private String departLeaderComment; |
| | | /**HF编码*/ |
| | | @ApiModelProperty(value = "HF编码") |