You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
451 B
26 lines
451 B
1 year ago
|
package com.ynxbd.common.bean.xk;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
import lombok.Setter;
|
||
|
import lombok.ToString;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
/**
|
||
|
* @author 李进才
|
||
|
* @ClassName medicalRecipe
|
||
|
* @Description TODO
|
||
|
* @date 2023/12/04 09:51:00
|
||
|
*/
|
||
|
|
||
|
@Setter
|
||
|
@Getter
|
||
|
@ToString
|
||
|
@NoArgsConstructor
|
||
|
public class medicalRecipe implements Serializable {
|
||
|
private String cfNum;
|
||
|
private Integer flag;
|
||
|
private String msg;
|
||
|
}
|