| | |
| | | |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import lombok.Data; |
| | | import org.hibernate.annotations.GenericGenerator; |
| | | |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | import javax.persistence.*; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | |
| | | * @author chen |
| | | * @date 2022-09-02 16:06 |
| | | */ |
| | | @Data |
| | | @Getter |
| | | @Setter |
| | | @Entity |
| | | @Table(name = "API_1301") |
| | | public class Api1301 implements Serializable { |
| | |
| | | @Column(name = "sgjbxx", length = 1000, nullable = false) |
| | | private String sgjbxx; |
| | | |
| | | @JSONField(format = "yyyy-MM-dd") |
| | | @PropertyDef(label = "整改时限" ) |
| | | @Column(name = "zgsx", length = 10) |
| | | private String zgsx; |
| | | private Date zgsx; |
| | | |
| | | @PropertyDef(label = "责任单位" ) |
| | | @Column(name = "zrdw", length = 128, nullable = false) |