parent
1ab2112eb6
commit
d618c89597
@ -0,0 +1,20 @@ |
||||
package cn.toesbieya.jxc.model.entity1; |
||||
|
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.ToString; |
||||
import org.springframework.data.annotation.Id; |
||||
|
||||
@Data |
||||
@ToString(callSuper = true) |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class BasicInfo extends Change{ |
||||
@Id |
||||
private Integer id; |
||||
private String name; |
||||
private Integer manufactureId; |
||||
private Integer typeId; |
||||
private Integer riskId; |
||||
|
||||
|
||||
} |
||||
@ -0,0 +1,11 @@ |
||||
package cn.toesbieya.jxc.model.entity1; |
||||
|
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class Change { |
||||
private Integer creatorId; |
||||
private Long createTime; |
||||
private Integer updateId; |
||||
private Long updateTime; |
||||
} |
||||
@ -0,0 +1,23 @@ |
||||
package cn.toesbieya.jxc.model.entity1; |
||||
|
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.ToString; |
||||
import org.springframework.data.annotation.Id; |
||||
|
||||
@Data |
||||
@ToString(callSuper = true) |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DetailInfo extends Change{ |
||||
@Id |
||||
private Integer id; |
||||
private Integer basicId; |
||||
private Long productionDate; |
||||
private Integer effective; |
||||
private Integer batchId; |
||||
private String specification; |
||||
private Integer unitId; |
||||
private Integer status; |
||||
private String remark; |
||||
|
||||
} |
||||
@ -0,0 +1,19 @@ |
||||
package cn.toesbieya.jxc.model.entity1; |
||||
|
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.ToString; |
||||
import org.springframework.data.annotation.Id; |
||||
|
||||
@Data |
||||
@ToString(callSuper = true) |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class Location extends Change{ |
||||
@Id |
||||
private Integer id; |
||||
private String name; |
||||
private Integer containerId; |
||||
private Integer storehouseId; |
||||
private Integer status; |
||||
|
||||
} |
||||
Loading…
Reference in new issue