| | |
| | | package zy.cloud.wms.manager.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.core.common.Cools;import io.swagger.annotations.ApiModelProperty; |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | @TableName("sys_flow_status") |
| | | public class FlowStatus implements Serializable { |
| | | |
| | |
| | | @ApiModelProperty(value= "") |
| | | private String str3; |
| | | |
| | | public FlowStatus() {} |
| | | @TableField("weight_num") |
| | | private Integer weightNum; |
| | | |
| | | public FlowStatus(Integer type,String name,String memo,String str1,String str2,String str3) { |
| | | this.type = type; |
| | | this.name = name; |
| | | this.memo = memo; |
| | | this.str1 = str1; |
| | | this.str2 = str2; |
| | | this.str3 = str3; |
| | | } |
| | | /** |
| | | * 0:常规项目 |
| | | * 1:集成项目 |
| | | */ |
| | | @TableField("is_asrs") |
| | | private Integer isAsrs; |
| | | |
| | | |
| | | // FlowStatus flowStatus = new FlowStatus( |
| | | // null, // 节点类型 |
| | |
| | | // null // |
| | | // ); |
| | | |
| | | public String getIsAsrs$(){ |
| | | if (this.isAsrs == 0) { |
| | | return "常规项目"; |
| | | }else { |
| | | return "集成项目"; |
| | | } |
| | | } |
| | | public Integer getId() { |
| | | return id; |
| | | } |